home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP06 / BLOKOUT1.C next >
C/C++ Source or Header  |  1995-12-31  |  5KB  |  152 lines

  1. /*-----------------------------------------
  2.    BLOKOUT1.C -- Mouse Button Demo Program
  3.                  (c) Charles Petzold, 1996
  4.   -----------------------------------------*/
  5.  
  6. #include <windows.h>
  7.  
  8. LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
  9.  
  10. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  11.                     PSTR szCmdLine, int iCmdShow)
  12.      {
  13.      static char szAppName[] = "BlokOut1" ;
  14.      HWND        hwnd ;
  15.      MSG         msg ;
  16.      WNDCLASSEX  wndclass ;
  17.  
  18.      wndclass.cbSize        = sizeof (wndclass) ;
  19.      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  20.      wndclass.lpfnWndProc   = WndProc ;
  21.      wndclass.cbClsExtra    = 0 ;
  22.      wndclass.cbWndExtra    = 0 ;
  23.      wndclass.hInstance     = hInstance ;
  24.      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  25.      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  26.      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
  27.      wndclass.lpszMenuName  = NULL ;
  28.      wndclass.lpszClassName = szAppName ;
  29.      wndclass.hIconSm       = LoadIcon (NULL, IDI_APPLICATION) ;
  30.  
  31.      RegisterClassEx (&wndclass) ;
  32.  
  33.      hwnd = CreateWindow (szAppName, "Mouse Button Demo",
  34.                           WS_OVERLAPPEDWINDOW,
  35.                           CW_USEDEFAULT, CW_USEDEFAULT,
  36.                           CW_USEDEFAULT, CW_USEDEFAULT,
  37.                           NULL, NULL, hInstance, NULL) ;
  38.  
  39.      ShowWindow (hwnd, iCmdShow) ;
  40.      UpdateWindow (hwnd) ;
  41.  
  42.      while (GetMessage (&msg, NULL, 0, 0))
  43.           {
  44.           TranslateMessage (&msg) ;
  45.           DispatchMessage (&msg) ;
  46.           }
  47.      return msg.wParam ;
  48.      }
  49.  
  50. void DrawBoxOutline (HWND hwnd, POINT ptBeg, POINT ptEnd)
  51.      {
  52.      HDC hdc ;
  53.  
  54.      hdc = GetDC (hwnd) ;
  55.  
  56.      SetROP2 (hdc, R2_NOT) ;
  57.      SelectObject (hdc, GetStockObject (NULL_BRUSH)) ;
  58.      Rectangle (hdc, ptBeg.x, ptBeg.y, ptEnd.x, ptEnd.y) ;
  59.  
  60.      ReleaseDC (hwnd, hdc) ;
  61.      }
  62.  
  63. LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
  64.      {
  65.      static BOOL  fBlocking, fValidBox ;
  66.      static POINT ptBeg, ptEnd, ptBoxBeg, ptBoxEnd ;
  67.      HDC          hdc ;
  68.      PAINTSTRUCT  ps ;
  69.  
  70.      switch (iMsg)
  71.           {
  72.           case WM_LBUTTONDOWN :
  73.                ptBeg.x = ptEnd.x = LOWORD (lParam) ;
  74.                ptBeg.y = ptEnd.y = HIWORD (lParam) ;
  75.  
  76.                DrawBoxOutline (hwnd, ptBeg, ptEnd) ;
  77.  
  78.                SetCursor (LoadCursor (NULL, IDC_CROSS)) ;
  79.  
  80.                fBlocking = TRUE ;
  81.                return 0 ;
  82.  
  83.           case WM_MOUSEMOVE :
  84.                if (fBlocking)
  85.                     {
  86.                     SetCursor (LoadCursor (NULL, IDC_CROSS)) ;
  87.  
  88.                     DrawBoxOutline (hwnd, ptBeg, ptEnd) ;
  89.  
  90.                     ptEnd.x = LOWORD (lParam) ;
  91.                     ptEnd.y = HIWORD (lParam) ;
  92.  
  93.                     DrawBoxOutline (hwnd, ptBeg, ptEnd) ;
  94.                     }
  95.                return 0 ;
  96.  
  97.           case WM_LBUTTONUP :
  98.                if (fBlocking)
  99.                     {
  100.                     DrawBoxOutline (hwnd, ptBeg, ptEnd) ;
  101.  
  102.                     ptBoxBeg   = ptBeg ;
  103.                     ptBoxEnd.x = LOWORD (lParam) ;
  104.                     ptBoxEnd.y = HIWORD (lParam) ;
  105.  
  106.                     SetCursor (LoadCursor (NULL, IDC_ARROW)) ;
  107.  
  108.                     fBlocking = FALSE ;
  109.                     fValidBox  = TRUE ;
  110.  
  111.                     InvalidateRect (hwnd, NULL, TRUE) ;
  112.                     }
  113.                return 0 ;
  114.  
  115.           case WM_CHAR :
  116.                if (fBlocking & wParam == '\x1B')       // ie, Escape
  117.                     {
  118.                     DrawBoxOutline (hwnd, ptBeg, ptEnd) ;
  119.  
  120.                     SetCursor (LoadCursor (NULL, IDC_ARROW)) ;
  121.  
  122.                     fBlocking = FALSE ;
  123.                     }
  124.                return 0 ;
  125.  
  126.           case WM_PAINT :
  127.                hdc = BeginPaint (hwnd, &ps) ;
  128.  
  129.                if (fValidBox)
  130.                     {
  131.                     SelectObject (hdc, GetStockObject (BLACK_BRUSH)) ;
  132.                     Rectangle (hdc, ptBoxBeg.x, ptBoxBeg.y,
  133.                                     ptBoxEnd.x, ptBoxEnd.y) ;
  134.                     }
  135.  
  136.                if (fBlocking)
  137.                     {
  138.                     SetROP2 (hdc, R2_NOT) ;
  139.                     SelectObject (hdc, GetStockObject (NULL_BRUSH)) ;
  140.                     Rectangle (hdc, ptBeg.x, ptBeg.y, ptEnd.x, ptEnd.y) ;
  141.                     }
  142.  
  143.                EndPaint (hwnd, &ps) ;
  144.                return 0 ;
  145.  
  146.           case WM_DESTROY :
  147.                PostQuitMessage (0) ;
  148.                return 0 ;
  149.           }
  150.      return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
  151.      }
  152.